home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Video Toaster 4.0
/
Video Toaster v4.0.iso
/
arexx
/
cg
/
asciiout.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1995-02-16
|
257b
|
11 lines
/* AsciiOut.rexx -- Prints Ascii Value Of Current Selected Char. */
/* By Bob Caron © 1994 NewTek, Inc. */
call addlib(CG_AREXX,0)
char=get_char()
call req_tell("Ascii Value:",CHAR||"="||c2d(char))
call remlib(CG_AREXX)
exit